home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_xemacs.idb / usr / freeware / lib / xemacs-20.4 / lisp / packages / resume.el.z / resume.el
Encoding:
Text File  |  1998-05-21  |  4.7 KB  |  132 lines

  1. ;;; resume.el --- process command line args from within a suspended Emacs job
  2. ;; Copyright (C) 1988, 1992 Free Software Foundation, Inc.
  3.  
  4. ;; Author: Joe Wells <jbw@bucsf.bu.edu>
  5. ;; Adapted-By: ESR
  6. ;; Keywords: processes
  7.  
  8. ;; This file is part of XEmacs.
  9.  
  10. ;; XEmacs is free software; you can redistribute it and/or modify it
  11. ;; under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; XEmacs is distributed in the hope that it will be useful, but
  16. ;; WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18. ;; General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with XEmacs; see the file COPYING.  If not, write to the
  22. ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. ;; Boston, MA 02111-1307, USA.
  24.  
  25. ;;; Synched up with: 19.34
  26.  
  27. ;;; Commentary:
  28.  
  29. ;; The purpose of this library is to handle command line arguments
  30. ;; when you resume an existing Emacs job.
  31.  
  32. ;; In order to use it, you must put this code in your .emacs file.
  33.  
  34. ;; (add-hook 'suspend-hook 'resume-suspend-hook)
  35. ;; (add-hook 'suspend-resume-hook 'resume-process-args)
  36.  
  37. ;; You can't get the benefit of this library by using the `emacs' command,
  38. ;; since that always starts a new Emacs job.  Instead you must use a
  39. ;; command called `edit' which knows how to resume an existing Emacs job
  40. ;; if you have one, or start a new Emacs job if you don't have one.
  41.  
  42. ;; To define the `edit' command, run the script etc/emacs.csh (if you use CSH),
  43. ;; or etc/emacs.bash if you use BASH.  You would normally do this in your
  44. ;; login script.
  45.  
  46. ;; Stephan Gildea suggested bug fix (gildea@bbn.com).
  47. ;; Ideas from Michael DeCorte and other people.
  48.  
  49. ;;; Code:
  50.  
  51. (defvar resume-emacs-args-file (expand-file-name "~/.emacs_args")
  52.   "*This file is where arguments are placed for a suspended emacs job.")
  53.  
  54. (defvar resume-emacs-args-buffer " *Command Line Args*"
  55.   "Buffer that is used by resume-process-args.")
  56.  
  57. (defun resume-process-args ()
  58.   "Handler for command line args given when Emacs is resumed."
  59.   (let ((start-buffer (current-buffer))
  60.     (args-buffer (get-buffer-create resume-emacs-args-buffer))
  61.     length args
  62.     (command-line-default-directory default-directory))
  63.     (unwind-protect
  64.     (progn
  65.       (set-buffer args-buffer)
  66.       (erase-buffer)
  67.       ;; get the contents of resume-emacs-args-file
  68.       (condition-case ()
  69.           (let ((result (insert-file-contents resume-emacs-args-file)))
  70.         (setq length (car (cdr result))))
  71.         ;; the file doesn't exist, ergo no arguments
  72.         (file-error
  73.          (erase-buffer)
  74.          (setq length 0)))
  75.       (if (<= length 0)
  76.           (setq args nil)
  77.         ;; get the arguments from the buffer
  78.         (goto-char (point-min))
  79.         (while (not (eobp))
  80.           (skip-chars-forward " \t\n")
  81.           (let ((begin (point)))
  82.         (skip-chars-forward "^ \t\n")
  83.         (setq args (cons (buffer-substring begin (point)) args)))
  84.           (skip-chars-forward " \t\n"))
  85.         ;; arguments are now in reverse order
  86.         (setq args (nreverse args))
  87.         ;; make sure they're not read again
  88.         (erase-buffer))
  89.       (resume-write-buffer-to-file (current-buffer) resume-emacs-args-file)
  90.       ;; if nothing was in buffer, args will be null
  91.       (or (null args)
  92.           (setq command-line-default-directory
  93.             (file-name-as-directory (car args))
  94.             args (cdr args)))
  95.       ;; actually process the arguments
  96.       ;; XEmacs: command-line-1 doesn't take a parameter
  97.       (let ((command-line-args-left args))
  98.         (command-line-1)))
  99.       ;; If the command line args don't result in a find-file, the
  100.       ;; buffer will be left in args-buffer.  So we change back to the
  101.       ;; original buffer.  The reason I don't just use
  102.       ;; (let ((default-directory foo))
  103.       ;;    (command-line-1 args))
  104.       ;; in the context of the original buffer is because let does not
  105.       ;; work properly with buffer-local variables.
  106.       (if (eq (current-buffer) args-buffer)
  107.       (set-buffer start-buffer)))))
  108.  
  109. ;;;###autoload
  110. (defun resume-suspend-hook ()
  111.   "Clear out the file used for transmitting args when Emacs resumes."
  112.   (save-excursion
  113.     (set-buffer (get-buffer-create resume-emacs-args-buffer))
  114.     (erase-buffer)
  115.     (resume-write-buffer-to-file (current-buffer) resume-emacs-args-file)))
  116.  
  117. (defun resume-write-buffer-to-file (buffer file)
  118.   "Writes the contents of BUFFER into FILE, if permissions allow."
  119.   (if (not (file-writable-p file))
  120.       (error "No permission to write file %s" file))
  121.   (save-excursion
  122.     (set-buffer buffer)
  123.     (clear-visited-file-modtime)
  124.     (save-restriction
  125.       (widen)
  126.       (write-region (point-min) (point-max) file nil 'quiet))
  127.     (set-buffer-modified-p nil)))
  128.  
  129. (provide 'resume)
  130.  
  131. ;;; resume.el ends here
  132.